type compress/flate.literalNode

12 uses

	compress/flate (current package)
		huffman_code.go#L20: 	freqcache []literalNode
		huffman_code.go#L26: type literalNode struct {
		huffman_code.go#L57: func maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxInt32} }
		huffman_code.go#L132: func (h *huffmanEncoder) bitCounts(list []literalNode, maxBits int32) []int32 {
		huffman_code.go#L246: func (h *huffmanEncoder) assignEncodingAndSize(bitCount []int32, list []literalNode) {
		huffman_code.go#L277: 		h.freqcache = make([]literalNode, maxNumLit+1)
		huffman_code.go#L285: 			list[count] = literalNode{uint16(i), f}
		huffman_code.go#L310: type byLiteral []literalNode
		huffman_code.go#L312: func (s *byLiteral) sort(a []literalNode) {
		huffman_code.go#L325: type byFreq []literalNode
		huffman_code.go#L327: func (s *byFreq) sort(a []literalNode) {